【例子介绍】基于SSM的酒店管理系统
【相关图片】
【源码结构】
.
├── hotel-master
│ ├── LICENSE
│ ├── README.md
│ ├── hotelDB.sql
│ ├── hotel_upload
│ │ ├── 20210520
│ │ │ ├── 65718cf7093440d9b808619174ed7e0e.jpg
│ │ │ ├── 9914646e2b464fa8a4ae1d60e9b1b617.jpg
│ │ │ ├── a277fee6c9da48e99646337a99628ef8.jpg
│ │ │ ├── c873b8aba83049ed83b57b173ebf5d0c.jpg
│ │ │ └── e3c57915a092454f84d008bb5cbb0d2d.jpg
│ │ ├── 20210521
│ │ │ ├── 18ca41aac4a34de489c61b47eee94a5c.jpg
│ │ │ ├── 24fd8556ad8548928b394f569fc3b849.jpg
│ │ │ ├── f9afe59f4d074773a53b163e0b78413d.jpg
│ │ │ └── fa2ca2a0245b4fcf90d9567fb0e01f79.jpg
│ │ ├── 20210524
│ │ │ └── e52e18310fb045f283c0fc9cabcb2d38.jpg
│ │ ├── 20210629
│ │ │ └── 6c72835476eb4e8fa7fec73d74ba9a0a.jpg
│ │ ├── 20210702
│ │ │ └── 959170a292be4b59bdeed9aa694584a2.jpg
│ │ ├── 20210924
│ │ │ ├── 3513ee437536446e8e2bd81727a720b3.jpg
│ │ │ ├── 3ba1919bea0e4dafa5a8ffd3306e760f.jpg
│ │ │ ├── 998304870a8b40bbb608f3ef8a572961.jpg
│ │ │ └── e8bcc74f026d4204bf72152941fff733.jpg
│ │ ├── images
│ │ │ └── 暂无图片.jpg
│ │ └── show
│ │ ├── 20210520
│ │ │ ├── 65718cf7093440d9b808619174ed7e0e.jpg
│ │ │ ├── 9914646e2b464fa8a4ae1d60e9b1b617.jpg
│ │ │ ├── a277fee6c9da48e99646337a99628ef8.jpg
│ │ │ ├── c873b8aba83049ed83b57b173ebf5d0c.jpg
│ │ │ └── e3c57915a092454f84d008bb5cbb0d2d.jpg
│ │ ├── 20210521
│ │ │ ├── 18ca41aac4a34de489c61b47eee94a5c.jpg
│ │ │ ├── 24fd8556ad8548928b394f569fc3b849.jpg
│ │ │ ├── f9afe59f4d074773a53b163e0b78413d.jpg
│ │ │ └── fa2ca2a0245b4fcf90d9567fb0e01f79.jpg
│ │ ├── 20210524
│ │ │ └── e52e18310fb045f283c0fc9cabcb2d38.jpg
│ │ ├── 20210526
│ │ │ └── d77e08537d4f41b9a999d6d3ff4cf880.jpg
│ │ └── images
│ │ └── 暂无图片.jpg
│ ├── install说明.md
│ ├── pom.xml
│ └── src
│ └── main
│ ├── java
│ │ └── com
│ │ └── thenie
│ │ ├── controller
│ │ │ ├── IndexController.java
│ │ │ ├── UserController.java
│ │ │ └── admin
│ │ │ ├── DeptController.java
│ │ │ ├── EmployeeController.java
│ │ │ ├── FloorController.java
│ │ │ ├── MenuController.java
│ │ │ ├── RoleController.java
│ │ │ ├── RoomController.java
│ │ │ ├── RoomTypeController.java
│ │ │ └── SystemController.java
│ │ ├── interceptor
│ │ │ └── LoginInterceptor.java
│ │ ├── mapper
│ │ │ ├── DeptMapper.java
│ │ │ ├── EmployeeMapper.java
│ │ │ ├── FloorMapper.java
│ │ │ ├── MenuMapper.java
│ │ │ ├── RoleMapper.java
│ │ │ ├── RoomMapper.java
│ │ │ ├── RoomTypeMapper.java
│ │ │ └── UserMapper.java
│ │ ├── pojo
│ │ │ ├── Dept.java
│ │ │ ├── Employee.java
│ │ │ ├── Floor.java
│ │ │ ├── Menu.java
│ │ │ ├── Role.java
│ │ │ ├── Room.java
│ │ │ ├── RoomType.java
│ │ │ └── User.java
│ │ ├── service
│ │ │ ├── DeptService.java
│ │ │ ├── EmployeeService.java
│ │ │ ├── FloorService.java
│ │ │ ├── MenuService.java
│ │ │ ├── RoleService.java
│ │ │ ├── RoomService.java
│ │ │ ├── RoomTypeService.java
│ │ │ ├── UserService.java
│ │ │ └── impl
│ │ │ ├── DeptServiceImpl.java
│ │ │ ├── EmployeeServiceImpl.java
│ │ │ ├── FloorServiceImpl.java
│ │ │ ├── MenuServiceImpl.java
│ │ │ ├── RoleServiceImpl.java
│ │ │ ├── RoomServiceImpl.java
│ │ │ ├── RoomTypeServiceImpl.java
│ │ │ └── UserServiceImpl.java
│ │ ├── utils
│ │ │ ├── DataGridViewResult.java
│ │ │ ├── FileNameUtils.java
│ │ │ ├── MenuNode.java
│ │ │ ├── MenuTreeUtil.java
│ │ │ ├── PasswordUtil.java
│ │ │ ├── SystemConstant.java
│ │ │ └── TreeNode.java
│ │ └── vo
│ │ ├── DeptVo.java
│ │ ├── EmployeeVo.java
│ │ ├── FloorVo.java
│ │ ├── MenuVo.java
│ │ ├── RoleVo.java
│ │ ├── RoomTypeVo.java
│ │ └── RoomVo.java
│ ├── resources
│ │ ├── applicationContext.xml
│ │ ├── com
│ │ │ └── thenie
│ │ │ └── mapper
│ │ │ ├── DeptMapper.xml
│ │ │ ├── EmployeeMapper.xml
│ │ │ ├── FloorMapper.xml
│ │ │ ├── MenuMapper.xml
│ │ │ ├── RoleMapper.xml
│ │ │ ├── RoomMapper.xml
│ │ │ ├── RoomTypeMapper.xml
│ │ │ └── UserMapper.xml
│ │ ├── database.properties
│ │ ├── mybatis-config.xml
│ │ ├── spring-mapper.xml
│ │ ├── spring-mvc.xml
│ │ └── spring-service.xml
│ └── web
│ ├── WEB-INF
│ │ ├── jsp
│ │ │ ├── admin
│ │ │ │ ├── dept
│ │ │ │ │ └── deptManager.jsp
│ │ │ │ ├── desktop.jsp
│ │ │ │ ├── employee
│ │ │ │ │ └── employeeManager.jsp
│ │ │ │ ├── floor
│ │ │ │ │ └── floorManager.jsp
│ │ │ │ ├── home.jsp
│ │ │ │ ├── login.jsp
│ │ │ │ ├── menu
│ │ │ │ │ └── menuManager.jsp
│ │ │ │ ├── password.jsp
│ │ │ │ ├── role
│ │ │ │ │ └── roleManager.jsp
│ │ │ │ ├── room
│ │ │ │ │ └── roomManager.jsp
│ │ │ │ ├── roomType
│ │ │ │ │ └── roomTypeManager.jsp
│ │ │ │ └── welcome-1.jsp
│ │ │ └── errors
│ │ │ └── 404.jsp
│ │ └── web.xml
│ ├── home.jsp
│ ├── index.jsp
│ ├── login.jsp
│ ├── register.jsp
│ └── statics
│ ├── front
│ │ ├── css
│ │ │ ├── font
│ │ │ │ ├── iconfont.eot
│ │ │ │ ├── iconfont.svg
│ │ │ │ ├── iconfont.ttf
│ │ │ │ ├── iconfont.woff
│ │ │ │ └── iconfont.woff2
│ │ │ ├── global(1).css
│ │ │ ├── global.css
│ │ │ └── store.css
│ │ ├── images
│ │ │ ├── 1.jpg
│ │ │ ├── 2.jpg
│ │ │ ├── 3.jpg
│ │ │ ├── 4.jpg
│ │ │ ├── 5.jpg
│ │ │ ├── 6.jpg
│ │ │ ├── all_bg.jpg
│ │ │ ├── desktopBack.jpg
│ │ │ ├── favicon.ico
│ │ │ ├── head.jpg
│ │ │ ├── load_bg.jpg
│ │ │ ├── logo-1.png
│ │ │ └── logo.png
│ │ └── layui
│ │ └── dist
│ │ ├── css
│ │ │ ├── layui.css
│ │ │ ├── layui.mobile.css
│ │ │ └── modules
│ │ │ ├── code.css
│ │ │ ├── laydate
│ │ │ │ └── default
│ │ │ │ └── laydate.css
│ │ │ └── layer
│ │ │ └── default
│ │ │ ├── icon-ext.png
│ │ │ ├── icon.png
│ │ │ ├── layer.css
│ │ │ ├── loading-0.gif
│ │ │ ├── loading-1.gif
│ │ │ └── loading-2.gif
│ │ ├── font
│ │ │ ├── iconfont.eot
│ │ │ ├── iconfont.svg
│ │ │ ├── iconfont.ttf
│ │ │ ├── iconfont.woff
│ │ │ └── iconfont.woff2
│ │ ├── images
│ │ │ └── face
│ │ │ ├── 0.gif
│ │ │ ├── 1.gif
│ │ │ ├── 10.gif
│ │ │ ├── 11.gif
│ │ │ ├── 12.gif
│ │ │ ├── 13.gif
│ │ │ ├── 14.gif
│ │ │ ├── 15.gif
│ │ │ ├── 16.gif
│ │ │ ├── 17.gif
│ │ │ ├── 18.gif
│ │ │ ├── 19.gif
│ │ │ ├── 2.gif
│ │ │ ├── 20.gif
│ │ │ ├── 21.gif
│ │ │ ├── 22.gif
│ │ │ ├── 23.gif
│ │ │ ├── 24.gif
│ │ │ ├── 25.gif
│ │ │ ├── 26.gif
│ │ │ ├── 27.gif
│ │ │ ├── 28.gif
│ │ │ ├── 29.gif
│ │ │ ├── 3.gif
│ │ │ ├── 30.gif
│ │ │ ├── 31.gif
│ │ │ ├── 32.gif
│ │ │ ├── 33.gif
│ │ │ ├── 34.gif
│ │ │ ├── 35.gif
│ │ │ ├── 36.gif
│ │ │ ├── 37.gif
│ │ │ ├── 38.gif
│ │ │ ├── 39.gif
│ │ │ ├── 4.gif
│ │ │ ├── 40.gif
│ │ │ ├── 41.gif
│ │ │ ├── 42.gif
│ │ │ ├── 43.gif
│ │ │ ├── 44.gif
│ │ │ ├── 45.gif
│ │ │ ├── 46.gif
│ │ │ ├── 47.gif
│ │ │ ├── 48.gif
│ │ │ ├── 49.gif
│ │ │ ├── 5.gif
│ │ │ ├── 50.gif
│ │ │ ├── 51.gif
│ │ │ ├── 52.gif
│ │ │ ├── 53.gif
│ │ │ ├── 54.gif
│ │ │ ├── 55.gif
│ │ │ ├── 56.gif
│ │ │ ├── 57.gif
│ │ │ ├── 58.gif
│ │ │ ├── 59.gif
│ │ │ ├── 6.gif
│ │ │ ├── 60.gif
│ │ │ ├── 61.gif
│ │ │ ├── 62.gif
│ │ │ ├── 63.gif
│ │ │ ├── 64.gif
│ │ │ ├── 65.gif
│ │ │ ├── 66.gif
│ │ │ ├── 67.gif
│ │ │ ├── 68.gif
│ │ │ ├── 69.gif
│ │ │ ├── 7.gif
│ │ │ ├── 70.gif
│ │ │ ├── 71.gif
│ │ │ ├── 8.gif
│ │ │ └── 9.gif
│ │ ├── lay
│ │ │ └── modules
│ │ │ ├── carousel.js
│ │ │ ├── code.js
│ │ │ ├── colorpicker.js
│ │ │ ├── element.js
│ │ │ ├── flow.js
│ │ │ ├── form.js
│ │ │ ├── jquery.js
│ │ │ ├── laydate.js
│ │ │ ├── layedit.js
│ │ │ ├── layer.js
│ │ │ ├── laypage.js
│ │ │ ├── laytpl.js
│ │ │ ├── mobile.js
│ │ │ ├── rate.js
│ │ │ ├── slider.js
│ │ │ ├── table.js
│ │ │ ├── transfer.js
│ │ │ ├── tree.js
│ │ │ ├── upload.js
│ │ │ └── util.js
│ │ ├── layui.all.js
│ │ └── layui.js
│ ├── layui
│ │ ├── api
│ │ │ ├── clear.json
│ │ │ ├── init.json
│ │ │ ├── menus.json
│ │ │ ├── table.json
│ │ │ ├── tableSelect.json
│ │ │ └── upload.json
│ │ ├── css
│ │ │ ├── layuimini.css
│ │ │ ├── public.css
│ │ │ └── themes
│ │ │ └── default.css
│ │ ├── images
│ │ │ ├── bg.jpg
│ │ │ ├── captcha.jpg
│ │ │ ├── donate_qrcode.png
│ │ │ ├── favicon.ico
│ │ │ ├── home.png
│ │ │ ├── icon-login.png
│ │ │ ├── loginbg.png
│ │ │ └── logo.png
│ │ ├── js
│ │ │ ├── lay-config.js
│ │ │ └── lay-module
│ │ │ ├── echarts
│ │ │ │ ├── echarts.js
│ │ │ │ └── echartsTheme.js
│ │ │ ├── iconPicker
│ │ │ │ └── iconPickerFa.js
│ │ │ ├── layarea
│ │ │ │ └── layarea.js
│ │ │ ├── layuimini
│ │ │ │ ├── miniAdmin.js
│ │ │ │ ├── miniMenu.js
│ │ │ │ ├── miniTab.js
│ │ │ │ ├── miniTheme.js
│ │ │ │ └── miniTongji.js
│ │ │ ├── step-lay
│ │ │ │ ├── step.css
│ │ │ │ └── step.js
│ │ │ ├── tableSelect
│ │ │ │ └── tableSelect.js
│ │ │ ├── treetable-lay
│ │ │ │ ├── treetable.css
│ │ │ │ └── treetable.js
│ │ │ └── wangEditor
│ │ │ ├── fonts
│ │ │ │ └── w-e-icon.woff
│ │ │ ├── wangEditor.css
│ │ │ ├── wangEditor.js
│ │ │ ├── wangEditor.min.css
│ │ │ ├── wangEditor.min.js
│ │ │ └── wangEditor.min.js.map
│ │ └── lib
│ │ ├── font-awesome-4.7.0
│ │ │ ├── HELP-US-OUT.txt
│ │ │ ├── css
│ │ │ │ ├── font-awesome.css
│ │ │ │ └── font-awesome.min.css
│ │ │ ├── fonts
│ │ │ │ ├── FontAwesome.otf
│ │ │ │ ├── fontawesome-webfont.eot
│ │ │ │ ├── fontawesome-webfont.svg
│ │ │ │ ├── fontawesome-webfont.ttf
│ │ │ │ ├── fontawesome-webfont.woff
│ │ │ │ └── fontawesome-webfont.woff2
│ │ │ ├── less
│ │ │ │ ├── animated.less
│ │ │ │ ├── bordered-pulled.less
│ │ │ │ ├── core.less
│ │ │ │ ├── fixed-width.less
│ │ │ │ ├── font-awesome.less
│ │ │ │ ├── icons.less
│ │ │ │ ├── larger.less
│ │ │ │ ├── list.less
│ │ │ │ ├── mixins.less
│ │ │ │ ├── path.less
│ │ │ │ ├── rotated-flipped.less
│ │ │ │ ├── screen-reader.less
│ │ │ │ ├── stacked.less
│ │ │ │ └── variables.less
│ │ │ └── scss
│ │ │ ├── _animated.scss
│ │ │ ├── _bordered-pulled.scss
│ │ │ ├── _core.scss
│ │ │ ├── _fixed-width.scss
│ │ │ ├── _icons.scss
│ │ │ ├── _larger.scss
│ │ │ ├── _list.scss
│ │ │ ├── _mixins.scss
│ │ │ ├── _path.scss
│ │ │ ├── _rotated-flipped.scss
│ │ │ ├── _screen-reader.scss
│ │ │ ├── _stacked.scss
│ │ │ ├── _variables.scss
│ │ │ └── font-awesome.scss
│ │ ├── jq-module
│ │ │ ├── jquery.particleground.min.js
│ │ │ ├── paigusu.min.js
│ │ │ └── zyupload
│ │ │ ├── zyupload-1.0.0.min.css
│ │ │ └── zyupload-1.0.0.min.js
│ │ ├── jquery-3.4.1
│ │ │ └── jquery-3.4.1.min.js
│ │ └── layui-v2.5.5
│ │ ├── css
│ │ │ ├── layui.css
│ │ │ ├── layui.mobile.css
│ │ │ └── modules
│ │ │ ├── code.css
│ │ │ ├── laydate
│ │ │ │ └── default
│ │ │ │ └── laydate.css
│ │ │ └── layer
│ │ │ └── default
│ │ │ ├── icon-ext.png
│ │ │ ├── icon.png
│ │ │ ├── layer.css
│ │ │ ├── loading-0.gif
│ │ │ ├── loading-1.gif
│ │ │ └── loading-2.gif
│ │ ├── font
│ │ │ ├── iconfont.eot
│ │ │ ├── iconfont.svg
│ │ │ ├── iconfont.ttf
│ │ │ ├── iconfont.woff
│ │ │ └── iconfont.woff2
│ │ ├── images
│ │ │ └── face
│ │ │ ├── 0.gif
│ │ │ ├── 1.gif
│ │ │ ├── 10.gif
│ │ │ ├── 11.gif
│ │ │ ├── 12.gif
│ │ │ ├── 13.gif
│ │ │ ├── 14.gif
│ │ │ ├── 15.gif
│ │ │ ├── 16.gif
│ │ │ ├── 17.gif
│ │ │ ├── 18.gif
│ │ │ ├── 19.gif
│ │ │ ├── 2.gif
│ │ │ ├── 20.gif
│ │ │ ├── 21.gif
│ │ │ ├── 22.gif
│ │ │ ├── 23.gif
│ │ │ ├── 24.gif
│ │ │ ├── 25.gif
│ │ │ ├── 26.gif
│ │ │ ├── 27.gif
│ │ │ ├── 28.gif
│ │ │ ├── 29.gif
│ │ │ ├── 3.gif
│ │ │ ├── 30.gif
│ │ │ ├── 31.gif
│ │ │ ├── 32.gif
│ │ │ ├── 33.gif
│ │ │ ├── 34.gif
│ │ │ ├── 35.gif
│ │ │ ├── 36.gif
│ │ │ ├── 37.gif
│ │ │ ├── 38.gif
│ │ │ ├── 39.gif
│ │ │ ├── 4.gif
│ │ │ ├── 40.gif
│ │ │ ├── 41.gif
│ │ │ ├── 42.gif
│ │ │ ├── 43.gif
│ │ │ ├── 44.gif
│ │ │ ├── 45.gif
│ │ │ ├── 46.gif
│ │ │ ├── 47.gif
│ │ │ ├── 48.gif
│ │ │ ├── 49.gif
│ │ │ ├── 5.gif
│ │ │ ├── 50.gif
│ │ │ ├── 51.gif
│ │ │ ├── 52.gif
│ │ │ ├── 53.gif
│ │ │ ├── 54.gif
│ │ │ ├── 55.gif
│ │ │ ├── 56.gif
│ │ │ ├── 57.gif
│ │ │ ├── 58.gif
│ │ │ ├── 59.gif
│ │ │ ├── 6.gif
│ │ │ ├── 60.gif
│ │ │ ├── 61.gif
│ │ │ ├── 62.gif
│ │ │ ├── 63.gif
│ │ │ ├── 64.gif
│ │ │ ├── 65.gif
│ │ │ ├── 66.gif
│ │ │ ├── 67.gif
│ │ │ ├── 68.gif
│ │ │ ├── 69.gif
│ │ │ ├── 7.gif
│ │ │ ├── 70.gif
│ │ │ ├── 71.gif
│ │ │ ├── 8.gif
│ │ │ └── 9.gif
│ │ ├── lay
│ │ │ └── modules
│ │ │ ├── carousel.js
│ │ │ ├── code.js
│ │ │ ├── colorpicker.js
│ │ │ ├── element.js
│ │ │ ├── flow.js
│ │ │ ├── form.js
│ │ │ ├── jquery.js
│ │ │ ├── laydate.js
│ │ │ ├── layedit.js
│ │ │ ├── layer.js
│ │ │ ├── laypage.js
│ │ │ ├── laytpl.js
│ │ │ ├── mobile.js
│ │ │ ├── rate.js
│ │ │ ├── slider.js
│ │ │ ├── table.js
│ │ │ ├── transfer.js
│ │ │ ├── tree.js
│ │ │ ├── upload.js
│ │ │ └── util.js
│ │ ├── layui.all.js
│ │ └── layui.js
│ └── layui_ext
│ ├── dist
│ │ └── dtree.js
│ └── dtree
│ ├── dtree.css
│ ├── dtree.js
│ ├── font
│ │ ├── dtreefont.css
│ │ ├── dtreefont.eot
│ │ ├── dtreefont.svg
│ │ ├── dtreefont.ttf
│ │ ├── dtreefont.woff
│ │ └── icons.json
│ └── 开发者日志.txt
└── 基于SSM的酒店管理系统.zip
104 directories, 453 files
评论